const math/big._W
87 uses
math/big (current package)
arith.go#L19: _S = _W / 8 // word size in bytes
arith.go#L21: _W = bits.UintSize // word size in bits
arith.go#L22: _B = 1 << _W // digit base
arith.go#L154: s &= _W - 1 // hint to the compiler that shifts by s don't need guard code
arith.go#L155: ŝ := _W - s
arith.go#L156: ŝ &= _W - 1 // ditto
arith.go#L177: s &= _W - 1 // hint to the compiler that shifts by s don't need guard code
arith.go#L178: ŝ := _W - s
arith.go#L179: ŝ &= _W - 1 // ditto
arith.go#L214: x1 = x1<<s | x0>>(_W-s)
decimal.go#L42: const maxShift = _W - 4
float.go#L219: return uint(len(x.mant))*_W - x.mant.trailingZeroBits()
float.go#L380: const msb = 1 << (_W - 1)
float.go#L412: bits := m * _W // present mantissa bits; bits > 0
float.go#L442: n := (z.prec + (_W - 1)) / _W // mantissa length in words for desired precision
float.go#L449: ntz := n*_W - z.prec // 0 <= ntz < _W
float.go#L493: const msb = 1 << (_W - 1)
float.go#L700: if debugFloat && x[i]&(1<<(_W-1)) == 0 {
float.go#L703: switch _W {
float.go#L718: if debugFloat && x[i]&(1<<(_W-1)) == 0 {
float.go#L721: switch _W {
float.go#L876: if p < 0 /* m <= 0.25 */ || p == 0 && x.mant.sticky(uint(len(x.mant))*_W-1) == 0 /* m == 0.5 */ {
float.go#L996: if p < 0 /* m <= 0.25 */ || p == 0 && x.mant.sticky(uint(len(x.mant))*_W-1) == 0 /* m == 0.5 */ {
float.go#L1101: allBits := uint(len(x.mant)) * _W
float.go#L1148: allBits := int32(len(x.mant)) * _W
float.go#L1227: ex := int64(x.exp) - int64(len(x.mant))*_W
float.go#L1228: ey := int64(y.exp) - int64(len(y.mant))*_W
float.go#L1258: z.setExpAndRound(ex+int64(len(z.mant))*_W-fnorm(z.mant), 0)
float.go#L1274: ex := int64(x.exp) - int64(len(x.mant))*_W
float.go#L1275: ey := int64(y.exp) - int64(len(y.mant))*_W
float.go#L1311: z.setExpAndRound(ex+int64(len(z.mant))*_W-fnorm(z.mant), 0)
float.go#L1348: n := int(z.prec/_W) + 1
float.go#L1368: e := int64(x.exp) - int64(y.exp) - int64(d-len(z.mant))*_W
floatconv.go#L85: exp2 := int64(len(z.mant))*_W - fnorm(z.mant)
floatmarsh.go#L31: n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
ftoa.go#L330: switch w := uint32(len(x.mant)) * _W; {
ftoa.go#L381: switch w := uint(len(x.mant)) * _W; {
int.go#L86: } else if _W == 32 && u>>32 != 0 {
int.go#L414: if _W == 32 && len(x) > 1 {
int.go#L438: if len(x.abs) <= 64/_W {
int.go#L447: return !x.neg && len(x.abs) <= 64/_W
int.go#L666: a1 = A.abs[n-1]<<h | A.abs[n-2]>>(_W-h)
int.go#L670: a2 = B.abs[n-1]<<h | B.abs[n-2]>>(_W-h)
int.go#L672: a2 = B.abs[n-2] >> (_W - h)
nat.go#L665: return i*_W + bits.Len(top)
nat.go#L681: return i*_W + uint(bits.TrailingZeros(uint(x[i])))
nat.go#L691: return i*_W + uint(bits.TrailingZeros(uint(x[i]))), true
nat.go#L717: n := m + int(s/_W)
nat.go#L719: z[n] = shlVU(z[n-m:n], x, s%_W)
nat.go#L737: n := m - int(s/_W)
nat.go#L744: shrVU(z, x[m-n:], s%_W)
nat.go#L750: j := int(i / _W)
nat.go#L751: m := Word(1) << (i % _W)
nat.go#L780: j := i / _W
nat.go#L785: return uint(x[j] >> (i % _W) & 1)
nat.go#L791: j := i / _W
nat.go#L804: if x[j]<<(_W-i%_W) != 0 {
nat.go#L828: w := (n + _W - 1) / _W
nat.go#L834: if n%_W != 0 {
nat.go#L835: z[len(z)-1] &= 1<<(n%_W) - 1
nat.go#L903: bitLengthOfMSW := uint(n % _W)
nat.go#L905: bitLengthOfMSW = _W
nat.go#L910: switch _W {
nat.go#L998: const mask = 1 << (_W - 1)
nat.go#L1004: w := _W - int(shift)
nat.go#L1028: for j := 0; j < _W; j++ {
nat.go#L1115: w := int((logM + _W - 1) / _W)
nat.go#L1141: mtop := int((logM - 2) / _W) // -2 because the top word of N bits is the (N-1)/W'th word.
nat.go#L1143: if mbits := (logM - 1) & (_W - 1); mbits != 0 {
nat.go#L1156: for j := 0; j < _W; j += n {
nat.go#L1179: zz = zz.mul(z, *powers[yi>>(_W-n)])
nat.go#L1219: for i := 1; i < _W; i <<= 1 {
nat.go#L1227: zz := nat(nil).shl(RR, uint(2*numWords*_W))
nat.go#L1256: for j := 0; j < _W; j += n {
nat.go#L1263: zz = zz.montgomery(z, powers[yi>>(_W-n)], m, k0, numWords)
nat.go#L1323: if _W == 64 {
nat.go#L1408: for uint(len(z))*_W < n {
natconv.go#L287: nbits := uint(_W) // number of unprocessed bits in w
natconv.go#L303: nbits = _W
natconv.go#L312: nbits = _W - (shift - nbits)
prime.go#L61: switch _W {
sqrt.go#L128: z.mant = z.mant.make(int(prec2/_W) * 2)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |